Get all entry data in an entry round
This endpoint gives you access to all entry form data in a given entry round, in pages of 100. Note that at the moment we only provide access to form data entered by the team as a whole, not to personal form data or recommender form data.
caution
You can find the identifier of an entry round by looking at the "id" property returned from the /entry-rounds endpoint.
curl https://platform.younoodle.com/client-api/v1/competition/my_competition/entry-rounds/my_entry_round/entries/data \
-H 'YouNoodle-API-Key: 56f9bbec9bc614e351e5eea2ea851e31' \
-H 'Accept: application/json'
The above command returns JSON structured like this:
{
"object": "list",
"count": 2,
"page": 1,
"has_more": false,
"data": [
{
"id": "6942526137426e743069797a42543172",
"object": "entry",
"url": "/client-api/v1/competition/entry-rounds/the_honey_badger_challenge/entries",
"name": "A marvellous entry",
"created_at": 1459530831,
"submitted_at": 1476717797,
"form_data" => [
{
"field_id": 15727,
"question": "Full name",
"type": "text",
"text": "The Honey Badger Startup"
},
{
"field_id": 15729,
"question": "Category",
"type": "option",
"selected_option": "Cryptocurrencies"
}
]
},
{
"id": "4c4131613947423338766d6d61716c35",
"object": "entry",
"url": "/client-api/v1/competition/entry-rounds/the_honey_badger_challenge/entries",
"name": "A revolutionary entry",
"created_at": 1459535852,
"submitted_at": 1459930831,
"form_data" => []
}
]
}
HTTP Request
GET https://platform.younoodle.com/client-api/v1/competition/<id>/entry-rounds/<entry-round-id>/entries/data
Query parameters
Add ?page=n as a request parameter to page through the data.
URL Parameters
| Parameter | Description |
|---|---|
| id | Your competition identifier |
| entry-round-id | The entry round identifier whose entry data you want to access |